home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / Plasmatech / ptscp_examples.exe / %MAINDIR% / Examples / Translation / CBuilder / FMain.dfm / FMain.txt
Encoding:
Text File  |  2001-08-31  |  2.4 KB  |  90 lines

  1. object FrmMain: TFrmMain
  2.   Left = 236
  3.   Top = 184
  4.   Width = 366
  5.   Height = 177
  6.   BorderIcons = [biSystemMenu, biMinimize]
  7.   Caption = 'FrmMain'
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   Position = poScreenCenter
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object PTFrame1: TPTFrame
  18.     Left = 0
  19.     Top = 0
  20.     Width = 358
  21.     Height = 9
  22.     FrameStyle = ptfsHorzLine
  23.     Align = alTop
  24.   end
  25.   object Label2: TLabel
  26.     Left = 8
  27.     Top = 8
  28.     Width = 345
  29.     Height = 121
  30.     AutoSize = False
  31.     Caption = 
  32.       'This tests the internationalisation support of the Shell Control' +
  33.       ' Pack.'#10#10'NOTE: Only strings explicitly declared in the SCP code w' +
  34.       'ill be translated. Strings provided by Windows will reflect the ' +
  35.       'language of the operating system.'#10#10'When this demo is built with ' +
  36.       'Delphi 3 you can change the translation DLL with the File|Overri' +
  37.       'de language... menu option.'
  38.     WordWrap = True
  39.   end
  40.   object MainMenu1: TMainMenu
  41.     Left = 192
  42.     Top = 8
  43.     object File1: TMenuItem
  44.       Caption = '&File'
  45.       ShortCut = 0
  46.       object Exit1: TMenuItem
  47.         Caption = 'E&xit'
  48.         ShortCut = 0
  49.         OnClick = Exit1Click
  50.       end
  51.     end
  52.     object Test1: TMenuItem
  53.       Caption = '&Test'
  54.       ShortCut = 0
  55.       object Opendialog1: TMenuItem
  56.         Caption = '&Open dialog...'
  57.         ShortCut = 0
  58.         OnClick = Opendialog1Click
  59.       end
  60.       object Savedialog1: TMenuItem
  61.         Caption = '&Save dialog...'
  62.         ShortCut = 0
  63.         OnClick = Savedialog1Click
  64.       end
  65.       object Folderbrowsedialog1: TMenuItem
  66.         Caption = '&Folder browse dialog...'
  67.         ShortCut = 0
  68.         OnClick = Folderbrowsedialog1Click
  69.       end
  70.     end
  71.   end
  72.   object PTOpenDlg1: TPTOpenDlg
  73.     Options = [ptofAllowMultiselect, ptofFileMustExist, ptofNoReadOnlyReturn, ptofAllowTree, ptofShowHints, ptofOleDrag, ptofOleDrop]
  74.     Filter = 'PAS files (*.pas;*.dpr;*.inc)|*.pas;*.dpr;*.inc|All files (*)|*'
  75.     FilterIndex = 2
  76.     FormSplitterPos = 199
  77.     Left = 224
  78.     Top = 8
  79.   end
  80.   object PTSaveDlg1: TPTSaveDlg
  81.     Options = [ptofCreatePrompt, ptofHideReadOnly, ptofOverwritePrompt, ptofAllowTree, ptofShowHints, ptofOleDrag, ptofOleDrop]
  82.     Left = 256
  83.     Top = 8
  84.   end
  85.   object PTFolderBrowseDlg1: TPTFolderBrowseDlg
  86.     Left = 288
  87.     Top = 8
  88.   end
  89. end
  90.